home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / internet-tools / amislate / examplerexx / onoff.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1996-01-27  |  296 b   |  19 lines

  1. /* A program demonstrating how to use TransmitGraphics to 
  2.    toggle transmission of graphics */
  3. parse arg CommandPort ActiveString
  4.  
  5. address (CommandPort)
  6. options results
  7.  
  8. do i = 0 to 50
  9.     transmitgraphics ON
  10.     point (i*2) 50
  11.     transmitgraphics OFF
  12.      point (i*2)+1 50
  13.     end
  14.  
  15. transmitgraphics ON
  16.  
  17.     
  18.     
  19.